home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / docs / DOS-to-Linux-HOWTO < prev    next >
Text File  |  1997-11-17  |  51KB  |  1,317 lines

  1.   From DOS/Windows to Linux HOWTO
  2.   By Guido Gonzato, guido@ibogfs.cineca.it
  3.   v1.2.2, 31 October 1997
  4.  
  5.   This HOWTO is dedicated to all the (soon to be former?) DOS and Win¡
  6.   dows users who have just taken the plunge and decided to switch to
  7.   Linux, the free UNIX clone. Given the similarities between DOS and
  8.   UNIX, the purpose of this document is to help the reader translate his
  9.   or her knowledge of DOS and Windows into the Linux environment, so as
  10.   to be productive ASAP.
  11.  
  12.   1.  Introduction
  13.  
  14.   1.1.  Is Linux Right for You?
  15.  
  16.   You want to switch from DOS/Windows to Linux? Good idea, but beware:
  17.   it might not be useful for you. IMHO, there is no such thing as ``the
  18.   best computer'' or ``the best operating system'': it depends on what
  19.   one has to do. That's why I don't believe that Linux is the best
  20.   solution for everyone, even if it's technically superior to many
  21.   commercial OS's. You're going to benefit immensely from Linux if what
  22.   you need is sw for programming, the Internet, TeX... technical sw in
  23.   general, but if you mostly need commercial sw, or if you don't feel
  24.   like learning and typing commands, look elsewhere.
  25.  
  26.   Linux is not (for now) as easy to use and configure as Windows or the
  27.   Mac, so be prepared to hack quite a bit. In spite of these warnings,
  28.   let me tell you that I'm 100% confident that if you belong to the
  29.   right user type you'll find in Linux your computer Nirvana. It's up to
  30.   you. And remember that Linux + DOS/Windows can coexist on the same
  31.   machine, anyway.
  32.  
  33.   Prerequisites for this howto: I'll assume that
  34.  
  35.   ╖  you know the basic DOS commands and concepts;
  36.  
  37.   ╖  Linux, possibly with X Window System, is properly installed on your
  38.      PC;
  39.  
  40.   ╖  your shell---the equivalent of COMMAND.COM---is bash;
  41.  
  42.   ╖  you understand that this guide is only an incomplete primer. For
  43.      more information, please refer to Matt Welsh's ``Linux Installation
  44.      and Getting Started'' and/or Larry Greenfield's ``Linux User
  45.      Guide''  (sunsite.unc.edu:/pub/Linux/docs/LDP).
  46.  
  47.   This howto replaces the old ``From DOS to Linux --- Quick!'' mini-
  48.   howto.  Also note that, unless specified, all information in this work
  49.   is aimed at bad ol' DOS. There's a section about Windows, but bear in
  50.   mind that Windows and Linux are totally different, unlike DOS which is
  51.   sort of a UNIX poor relation.
  52.  
  53.   1.2.  It Is. Tell Me More
  54.  
  55.   You installed Linux and the programs you needed on the PC. You gave
  56.   yourself an account (if not, type adduser now!) and Linux is running.
  57.   You've just entered your name and password, and now you are looking at
  58.   the screen thinking: ``Well, now what?''
  59.  
  60.   Now, don't despair. You're almost ready to do the same things you used
  61.   to do with DOS, and many more. If you were running DOS instead of
  62.   Linux, you would be doing some of the following tasks:
  63.  
  64.   ╖  running programs and creating, copying, viewing, deleting,
  65.      printing, renaming files;
  66.  
  67.   ╖  CD'ing, MD'ing, RD'ing, and DIR'ring your directories;
  68.  
  69.   ╖  formatting floppies and copying files from/to them;
  70.  
  71.   ╖  mending your AUTOEXEC.BAT and CONFIG.SYS;
  72.  
  73.   ╖  writing your own .BAT files and/or QBasic and/or C/Pascal programs;
  74.  
  75.   ╖  the remaining 1%.
  76.  
  77.   You'll be glad to know that these tasks can be accomplished under
  78.   Linux in a fashion similar to DOS. Under DOS, the average user uses
  79.   very few of the 100+ commands available: the same, up to a point,
  80.   holds for Linux.
  81.  
  82.   A few things to point out before going on:
  83.  
  84.   ╖  first, how to get out. To quit Linux: if you see a text mode
  85.      screen, press CTRL-ALT-DEL, wait for the system to fix its innards
  86.      and tell you everything is OK, then switch off the PC. If you are
  87.      working under X Window System, press CTRL-ALT-BACKSPACE first, then
  88.      CTRL-ALT-DEL. Never switch off or reset the PC directly: this could
  89.      damage the file system;
  90.  
  91.   ╖  unlike DOS, Linux has built-in security mechanisms, due to its
  92.      multiuser nature. Files and directories have permissions associated
  93.      to them, and therefore some cannot be accessed by the normal user;
  94.      (see Section ``Permissions''). Only the user whose login name is
  95.      ``root'' has the power. (This guy's the system administrator. If
  96.      you work on your own PC, you'll be root as well.) DOS, on the
  97.      contrary, will let you wipe out the entire contents of your hard
  98.      disk;
  99.  
  100.   ╖  you are strongly encouraged to experiment, play, try by yourself:
  101.      it surely won't hurt.  If you need help, you can do the following:
  102.  
  103.   ╖  to get some help about the ``internal commands'' of the shell, type
  104.      help;
  105.  
  106.   ╖  to get help on a command, type man command that invokes the manual
  107.      (``man'') page pertinent to command. Alternatively, type info
  108.      command that invokes, if available, the info page pertinent to
  109.      command. Info is a hypertext-based documentation system, perhaps
  110.      not intuitive to use at first. Finally, you may try apropos command
  111.      or whatis command pressing then `q' to exit;
  112.  
  113.   ╖  most of the power and flexibility of UNIX comes from the simple
  114.      concepts of redirection and piping, more powerful than under DOS.
  115.      Simple commands can be strung together to accomplish complex tasks.
  116.      Do use these features!
  117.  
  118.   ╖  conventions: <...> means something that must be specified, while
  119.      [...] something optional. Example:
  120.  
  121.   $ tar -tf <file.tar> [> redir_file]
  122.  
  123.   file.tar must be indicated, but redirection to redir_file is optional.
  124.  
  125.   ╖  from now on ``RMP'' means ``please read the man pages for further
  126.      information''.
  127.  
  128.   1.3.  For the Impatient
  129.  
  130.   Want to strike out? Have a look at this:
  131.  
  132.        DOS                     Linux                   Notes
  133.        ------------------------------------------------------------------------------
  134.  
  135.        BACKUP                  tar -Mcvf device dir/   completely different
  136.        CD dirname\             cd dirname/             almost the same syntax
  137.        COPY file1 file2        cp file1 file2          ditto
  138.        DEL file                rm file                 beware - no undelete
  139.        DELTREE dirname         rm -R dirname/          ditto
  140.        DIR                     ls                      not exactly the same syntax
  141.        DIR file /S             find . -name file       completely different
  142.        EDIT file               vi file                 I think you won't like it
  143.                                emacs file              this is better
  144.                                jstar file              feels like dos' edit
  145.        FORMAT                  fdformat,
  146.                                mount, umount           quite different syntax
  147.        HELP command            man command             same philosophy
  148.        MD dirname              mkdir dirname/          almost the same syntax
  149.        MOVE file1 file2        mv file1 file2          ditto
  150.        NUL                     /dev/null               ditto
  151.        PRINT file              lpr file                ditto
  152.        PRN                     /dev/lp0,
  153.                                /dev/lp1                ditto
  154.        RD dirname              rmdir dirname/          almost the same syntax
  155.        REN file1 file2         mv file1 file2          not for multiple files
  156.        RESTORE                 tar -Mxpvf device       different syntax
  157.        TYPE file               less file               much better
  158.        WIN                     startx                  poles apart!
  159.  
  160.   If you need more than a table of commands, please refer to the
  161.   following sections.
  162.  
  163.   2.  Files and Programs
  164.  
  165.   2.1.  Files: Preliminary Notions
  166.  
  167.   Linux has a file system---meaning by that ``the structure of
  168.   directories and files therein''---very similar to that of DOS. Files
  169.   have filenames that obey special rules, are stored in directories,
  170.   some are executable, and among these most have command switches.
  171.   Moreover, you can use wildcard characters, redirection, and piping.
  172.   There are only a few minor differences:
  173.  
  174.   ╖  under DOS, file names are in the so-called 8.3 form; e.g.
  175.      NOTENOUG.TXT. Under Linux we can do better. If you installed Linux
  176.      using a file system like ext2 or umsdos, you can use longer
  177.      filenames (up to 255 characters), and with more than one dot in
  178.      them: for example, This_is.a.VERY_long.filename. Please note that I
  179.      used both upper and lower case characters: in fact...
  180.  
  181.   ╖  upper and lower case characters in file names or commands are
  182.      different. Therefore, FILENAME.tar.gz and filename.tar.gz are two
  183.      different files. ls is a command, LS is a mistake;
  184.  
  185.   ╖  Windows 95 users will want to use long file names under Linux, of
  186.      course. If a file name contains spaces (not recommended but
  187.      possible), you must enclose the file in double quotes whenever your
  188.      refer to it. For example:
  189.  
  190.        $ # the following command makes a directory called "My old files"
  191.        $ mkdir "My old files"
  192.        $ ls
  193.        My old files    bin     tmp
  194.  
  195.   Some characters shouldn't but can be used: some are !*$&. I won't tell
  196.   you how, though.
  197.  
  198.   ╖  there are no compulsory extensions like .COM and ..EXE for
  199.      programs, or .BAT for batch files. Executable files are marked by
  200.      an asterisk '*' at the end of their name when you issue the ls -F
  201.      command. For example:
  202.  
  203.        $ ls -F
  204.        I_am_a_dir/   cindy.jpg    cjpg*   letter_to_Joe    my_1st_script*  old~
  205.  
  206.   The files cjpg* and my_1st_script* are executable---``programs''.
  207.   Under DOS, backup files end in .BAK, while under Linux they end with a
  208.   tilde as hidden. Example: the file .I.am.a.hidden.file won't show up
  209.   after the ls command;
  210.  
  211.   ╖  DOS program switches are obtained with /switch, Linux switches with
  212.      -switch or --switch. Example: dir /s becomes ls -R. Note that many
  213.      DOS programs, like PKZIP or ARJ, use UNIX-style switches.
  214.  
  215.   You can now jump to Section ``Translating Commands from DOS to
  216.   Linux'', but if I were you I'd read on.
  217.  
  218.   2.2.  Symbolic Links
  219.  
  220.   UNIX has a type of file that doesn't exist under DOS: the symbolic
  221.   link.  This can be thought of as a pointer to a file or to a
  222.   directory, and can be used instead of the file or directory it points
  223.   to; it's similar to Windows 95 shortcuts. Examples of symbolic links
  224.   are /usr/X11, which points to /usr/X11R6; /dev/modem, which points to
  225.   either /dev/cua0 or /dev/cua1.
  226.  
  227.   To make a symbolic link:
  228.  
  229.        $ ln -s <file_or_dir> <linkname>
  230.  
  231.   Example:
  232.  
  233.        $ ln -s /usr/doc/g77/DOC g77manual.txt
  234.  
  235.   Now you can refer to g77manual.txt instead of /usr/doc/g77/DOC.  Links
  236.   appear like this in directory listings:
  237.  
  238.        $ ls -F
  239.        g77manual.txt@
  240.        $ ls -l
  241.        (various things...)           g77manual.txt -> /usr/doc/g77/DOC
  242.  
  243.   2.3.  Permissions and Ownership
  244.  
  245.   DOS files and directories have the following attributes: A (archive),
  246.   H (hidden), R (read-only), and S (system). Only H and R make sense
  247.   under Linux: hidden files start with a dot, and for the R attribute,
  248.   read on.
  249.  
  250.   Under UNIX a file has ``permissions'' and an owner, who in turn
  251.   belongs to a ``group''. Look at this example:
  252.  
  253.        $ ls -l /bin/ls
  254.        -rwxr-xr-x  1  root  bin  27281 Aug 15 1995 /bin/ls*
  255.  
  256.   The first field contains the permissions of the file /bin/ls, which
  257.   belongs to root, group bin. Leaving the remaining information aside
  258.   (Matt's book is there for that purpose), remember that -rwxr-xr-x
  259.   means, from left to right:
  260.   - is the file type (- = ordinary file, d = directory, l = link, etc);
  261.   rwx are the permissions for the file owner (read, write, execute); r-x
  262.   are the permissions for the group of the file owner (read, execute);
  263.   (I won't cover the concept of group, you can survive without it as
  264.   long as you're a beginner ;-) r-x are the permissions for all other
  265.   users (read, execute).
  266.  
  267.   This is why you can't delete the file /bin/ls unless you are root: you
  268.   don't have the write permission to do so. To change a file's
  269.   permissions, the command is:
  270.  
  271.        $ chmod <whoXperm> <file>
  272.  
  273.   where who is u (user, that is owner), g (group), o (other), X is
  274.   either + or -, perm is r (read), w (write), or x (execute). Examples:
  275.  
  276.        $ chmod u+x file
  277.  
  278.   this sets the execute permission for the file owner. Shortcut: chmod
  279.   +x file.
  280.  
  281.        $ chmod go-wx file
  282.  
  283.   this removes write and execute permission for everyone but the owner.
  284.  
  285.        $ chmod ugo+rwx file
  286.  
  287.   this gives everyone read, write, and execute permission.
  288.  
  289.        # chmod +s file
  290.  
  291.   this makes a so-called ``setuid'' or ``suid'' file---a file that
  292.   everyone can execute with its owner's privileges. Typically, you'll
  293.   come across root suid files.
  294.  
  295.   A shorter way to refer to permissions is with numbers: rwxr-xr-x can
  296.   be expressed as 755 (every letter corresponds to a bit: --- is 0, --x
  297.   is 1, -w- is 2, -wx is 3...). It looks difficult, but with a bit of
  298.   practice you'll understand the concept.
  299.  
  300.   root, being the so-called superuser, can change everyone's file
  301.   permissions.  There's more to it---RMP.
  302.  
  303.   2.4.  Translating Commands from DOS to Linux
  304.  
  305.   On the left, the DOS commands; on the right, their Linux counterpart.
  306.  
  307.        COPY:           cp
  308.        DEL:            rm
  309.        MOVE:           mv
  310.        REN:            mv
  311.        TYPE:           more, less, cat
  312.  
  313.   Redirection and plumbing operators:  < > >> |
  314.  
  315.   Wildcards: * ?
  316.  
  317.   nul: /dev/null
  318.  
  319.   prn, lpt1:   /dev/lp0 or /dev/lp1; lpr
  320.  
  321.   - EXAMPLES -
  322.  
  323.        DOS                                     Linux
  324.        ---------------------------------------------------------------------
  325.  
  326.        C:\GUIDO>COPY JOE.TXT JOE.DOC           $ cp joe.txt joe.doc
  327.        C:\GUIDO>COPY *.* TOTAL                 $ cat * > total
  328.        C:\GUIDO>COPY FRACTALS.DOC PRN          $ lpr fractals.doc
  329.        C:\GUIDO>DEL TEMP                       $ rm temp
  330.        C:\GUIDO>DEL *.BAK                      $ rm *~
  331.        C:\GUIDO>MOVE PAPER.TXT TMP\            $ mv paper.txt tmp/
  332.        C:\GUIDO>REN PAPER.TXT PAPER.ASC        $ mv paper.txt paper.asc
  333.        C:\GUIDO>PRINT LETTER.TXT               $ lpr letter.txt
  334.        C:\GUIDO>TYPE LETTER.TXT                $ more letter.txt
  335.        C:\GUIDO>TYPE LETTER.TXT                $ less letter.txt
  336.        C:\GUIDO>TYPE LETTER.TXT > NUL          $ cat letter.txt > /dev/null
  337.                n/a                             $ more *.txt *.asc
  338.                n/a                             $ cat section*.txt | less
  339.  
  340.   Notes:
  341.  
  342.   ╖  * is smarter under Linux: * matches all files except the hidden
  343.      ones; 1middle, followed by other characters; p*r matches both
  344.      `peter' and `piper'; *c* matches both `picked' and `peck';
  345.  
  346.   ╖  when using more, press SPACE to read through the file, `q' or CTRL-
  347.      C to exit. less is more intuitive and lets you use the arrow keys;
  348.  
  349.   ╖  there is no UNDELETE, so think twice before deleting anything;
  350.  
  351.   ╖  in addition to DOS < > >>, Linux has 2> to redirect error messages
  352.      (stderr); moreover, 2>&1 redirects stderr to stdout, while 1>&2
  353.      redirects stdout to stderr;
  354.  
  355.   ╖  Linux has another wildcard: the []. Use: [abc]* matches files
  356.      starting with a, b, c; *[I-N,1,2,3] matches files ending with I, J,
  357.      K, L, M, N, 1, 2, 3;
  358.  
  359.   ╖  there is no DOS-like RENAME; that is, mv *.xxx *.yyy won't work.
  360.      You could try this simple script; see Section ``Shell Scripts'' for
  361.      details.
  362.  
  363.      ___________________________________________________________________
  364.      #!/bin/sh
  365.      # ren: rename multiple files according to several rules
  366.  
  367.      if [ $# -lt 3 ] ; then
  368.        echo "usage: ren \"pattern\" \"replacement\" files..."
  369.        exit 1
  370.      fi
  371.  
  372.      OLD=$1 ; NEW=$2 ; shift ; shift
  373.  
  374.      for file in $*
  375.      do
  376.        new=`echo ${file} | sed s/${OLD}/${NEW}/g`
  377.        mv ${file} $new
  378.      done
  379.      ___________________________________________________________________
  380.  
  381.   Beware: it doesn't behave like DOS REN, as it uses ``regular expres¡
  382.   sions'' that you still don't know. Shortly, if you simply want to
  383.   change file extensions, use it as in: ren "htm$" "html" *htm.  Don't
  384.   forget the $ sign.
  385.  
  386.   ╖  use cp -i and mv -i to be warned when a file is going to be
  387.      overwritten.
  388.  
  389.   2.5.  Running Programs: Multitasking and Sessions
  390.  
  391.   To run a program, type its name as you would do under DOS. If the
  392.   directory (Section ``Directories'') where the program is stored is
  393.   included in the PATH (Section ``System Initialisation''), the program
  394.   will start. Exception: unlike DOS, under Linux a program located in
  395.   the current directory won't run unless the directory is included in
  396.   the PATH. Escamotage: being prog your program, type ./prog.
  397.  
  398.   This is what the typical command line looks like:
  399.  
  400.        $ command -s1 -s2 ... -sn par1 par2 ... parn < input > output
  401.  
  402.   where -s1, ..., -sn are the program switches, par1, the command line:
  403.  
  404.   $ command1 ; command2 ; ... ; commandn
  405.  
  406.   That's all about running programs, but it's easy to go a step beyond.
  407.   One of the main reasons for using Linux is that it is a multitasking
  408.   os---it can run several programs (from now on, processes) at the same
  409.   time. You can launch processes in background and continue working
  410.   straight away. Moreover, Linux lets you have several sessions: it's
  411.   like having many computers to work on at once!
  412.  
  413.   ╖  To switch to session 1..6:
  414.  
  415.        $ ALT-F1 ... ALT-F6
  416.  
  417.   ╖  To start a new session without leaving the current one:
  418.  
  419.        $ su - <loginname>
  420.  
  421.   Example:
  422.  
  423.        $ su - root
  424.  
  425.   This is useful, for one, when you need to mount a disk (Section
  426.   ``Floppies''): normally, only root can do that.
  427.  
  428.   ╖  To end a session:
  429.  
  430.        $ exit
  431.  
  432.   If there are stopped jobs (see later), you'll be warned.
  433.  
  434.   ╖  To launch a process in foreground:
  435.  
  436.        $ progname [-switches] [parameters] [< input] [> output]
  437.  
  438.   ╖  To launch a process in background, add an ampersand '&' at the end
  439.      of the command line:
  440.  
  441.        $ progname [-switches] [parameters] [< input] [> output] &
  442.        [1] 123
  443.  
  444.   the shell identifies the process with a job number (e.g. [1]; see
  445.   below), and with a PID (123 in our example).
  446.  
  447.   ╖  To see how many processes there are:
  448.  
  449.        $ ps -a
  450.  
  451.   This will output a list of currently running processes.
  452.  
  453.   ╖  To kill a process:
  454.  
  455.        $ kill <PID>
  456.  
  457.   You may need to kill a process when you don't know how to quit it the
  458.   right way... ;-). Sometimes, a process will only be killed by either
  459.   of the following:
  460.  
  461.        $ kill -15 <PID>
  462.        $ kill -9 <PID>
  463.  
  464.   In addition to this, the shell allows you to stop or temporarily sus¡
  465.   pend a process, send a process to background, and bring a process from
  466.   background to foreground. In this context, processes are called
  467.   ``jobs''.
  468.  
  469.   ╖  To see how many jobs there are:
  470.  
  471.        $ jobs
  472.  
  473.   here jobs are identified by their job number, not by their PID.
  474.   ╖  To stop a process running in foreground (it won't always work):
  475.  
  476.        $ CTRL-C
  477.  
  478.   ╖  To suspend a process running in foreground (ditto):
  479.  
  480.        $ CTRL-Z
  481.  
  482.   ╖  To send a suspended process into background (it becomes a job):
  483.  
  484.        $ bg <job>
  485.  
  486.   ╖  To bring a job to foreground:
  487.  
  488.        $ fg <job>
  489.  
  490.   ╖  To kill a job:
  491.  
  492.        $ kill <%job>
  493.  
  494.   where <job> may be 1, 2, 3, ...  Using these commands you can format a
  495.   disk, zip a bunch of files, compile a program, and unzip an archive
  496.   all at the same time, and still have the prompt at your disposal. Try
  497.   this with DOS! And try with Windows, just to see the difference in
  498.   performance.
  499.  
  500.   2.6.  Running Programs on Remote Computers
  501.  
  502.   To run a program on a remote machine whose IP address is
  503.   remote.bigone.edu, you do:
  504.  
  505.   $ telnet remote.bigone.edu
  506.  
  507.   After logging in, start your favourite program. Needless to say, you
  508.   must have an account on the remote machine.
  509.  
  510.   If you have X11, you can even run an X application on a remote
  511.   computer, displaying it on your X screen. Let remote.bigone.edu be the
  512.   remote X computer and local.linux.box be your Linux machine. To run
  513.   from local.linux.box an X program that resides on remote.bigone.edu,
  514.   do the following:
  515.  
  516.   ╖  fire up X11, start an xterm or equivalent terminal emulator, then
  517.      type:
  518.  
  519.        $ xhost +remote.bigone.edu
  520.        $ telnet remote.bigone.edu
  521.  
  522.   ╖  after logging in, type:
  523.  
  524.        remote:$ DISPLAY=local.linux.box:0.0
  525.        remote:$ progname &
  526.  
  527.   (instead of DISPLAY..., you may have to write setenv DISPLAY
  528.   local.linux.box:0.0. It depends on the remote shell.)
  529.  
  530.   Et voila! Now progname will start on remote.bigone.edu and will be
  531.   displayed on your machine. Don't try this over a ppp line though, for
  532.   it's too slow to be usable.
  533.  
  534.   3.  Using Directories
  535.  
  536.   3.1.  Directories: Preliminary Notions
  537.  
  538.   We have seen the differences between files under DOS and Linux. As for
  539.   directories, under DOS the root directory is  under Linux / is.
  540.   Similarly, nested directories are separated by  under DOS, by / under
  541.   Linux. Example of file paths:
  542.  
  543.        DOS:    C:\PAPERS\GEOLOGY\MID_EOC.TEX
  544.        Linux:  /home/guido/papers/geology/mid_eocene.tex
  545.  
  546.   As usual, .. is the parent directory, . is the current directory.
  547.   Remember that the system won't let you cd, rd, or md everywhere you
  548.   want. Each user starts from his or her own directory called dir is
  549.   /home/guido.
  550.  
  551.   3.2.  Directories Permissions
  552.  
  553.   Directories, too, have permissions. What we have seen in Section
  554.   ``Permissions'' holds for directories as well (user, group, and
  555.   other). For a directory, rx means you can cd to that directory, and w
  556.   means that you can delete a file in the directory (according to the
  557.   file's permissions, of course), or the directory itself.
  558.  
  559.   For example, to prevent other users from snooping in /home/guido/text:
  560.  
  561.        $ chmod o-rwx /home/guido/text
  562.  
  563.   3.3.  Translating Commands from DOS to Linux
  564.  
  565.        DIR:            ls, find, du
  566.        CD:             cd, pwd
  567.        MD:             mkdir
  568.        RD:             rmdir
  569.        DELTREE:        rm -R
  570.        MOVE:           mv
  571.  
  572.   - EXAMPLES -
  573.  
  574.   DOS                                     Linux
  575.   ---------------------------------------------------------------------
  576.  
  577.   C:\GUIDO>DIR                            $ ls
  578.   C:\GUIDO>DIR FILE.TXT                   $ ls file.txt
  579.   C:\GUIDO>DIR *.H *.C                    $ ls *.h *.c
  580.   C:\GUIDO>DIR/P                          $ ls | more
  581.   C:\GUIDO>DIR/A                          $ ls -l
  582.   C:\GUIDO>DIR *.TMP /S                   $ find / -name "*.tmp"
  583.   C:\GUIDO>CD                             $ pwd
  584.           n/a - see note                  $ cd
  585.           ditto                           $ cd ~
  586.           ditto                           $ cd ~/temp
  587.   C:\GUIDO>CD \OTHER                      $ cd /other
  588.   C:\GUIDO>CD ..\TEMP\TRASH               $ cd ../temp/trash
  589.   C:\GUIDO>MD NEWPROGS                    $ mkdir newprogs
  590.   C:\GUIDO>MOVE PROG ..                   $ mv prog ..
  591.   C:\GUIDO>MD \PROGS\TURBO                $ mkdir /progs/turbo
  592.   C:\GUIDO>DELTREE TEMP\TRASH             $ rm -R temp/trash
  593.   C:\GUIDO>RD NEWPROGS                    $ rmdir newprogs
  594.   C:\GUIDO>RD \PROGS\TURBO                $ rmdir /progs/turbo
  595.  
  596.   Notes:
  597.  
  598.   1. when using rmdir, the directory to remove must be empty. To delete
  599.      a directory and all of its contents, use rm -R (at your own risk).
  600.  
  601.   2. the character '~' is a shortcut for the name of your home
  602.      directory. The commands cd or cd ~ will take you to your home
  603.      directory from wherever you are; the command cd ~/tmp will take you
  604.      to /home/your_home/tmp.
  605.  
  606.   3. cd - ``undoes'' the last cd.
  607.  
  608.   4.  Floppies, Hard Disks, and the Like
  609.  
  610.   4.1.  Managing Devices
  611.  
  612.   You have never thought about it, but the DOS command FORMAT A: does a
  613.   lot more work than it seems. In fact, when you issue the command
  614.   FORMAT it will: 1) physically format the disk; 2) create the
  615.   A: directory (= create a filesystem); 3) make the disk available to
  616.   the user (= mount the disk).
  617.  
  618.   These three steps are addressed separately under Linux. You can use
  619.   floppies in MS-DOS format, though other formats are available and are
  620.   better---the MS-DOS format won't let you use long filenames. Here is
  621.   how to prepare a disk (you'll need to start a session as root):
  622.  
  623.   ╖  To format a standard 1.44 meg floppy disk (A:):
  624.  
  625.        # fdformat /dev/fd0H1440
  626.  
  627.   ╖  To create a filesystem:
  628.  
  629.        # mkfs -t ext2 -c /dev/fd0H1440
  630.  
  631.   To create an MS-DOS filesystem, use msdos instead of ext2. Before
  632.   using the disk, you must mount it.
  633.  
  634.   ╖  To mount the disk:
  635.  
  636.        # mount -t ext2 /dev/fd0 /mnt
  637.  
  638.   or
  639.  
  640.        # mount -t msdos /dev/fd0 /mnt
  641.  
  642.   Now you can address the files in the floppy. When you've finished,
  643.   before extracting the disk you must unmount it.
  644.  
  645.   ╖  To unmount the disk:
  646.  
  647.        # umount /mnt
  648.  
  649.   Now you can extract the disk. Obviously, you have to fdformat and mkfs
  650.   only unformatted disks, not previously used ones. If you want to use
  651.   drive B:, refer to fd1H1440 and fd1 instead of fd0H1440 and fd0 in the
  652.   examples above.
  653.  
  654.   All you used to do with A: or B: is now done using /mnt instead.
  655.   Examples:
  656.  
  657.        DOS                                     Linux
  658.        ---------------------------------------------------------------------
  659.  
  660.        C:\GUIDO>DIR A:                         $ ls /mnt
  661.        C:\GUIDO>COPY A:*.*                     $ cp /mnt/* /docs/temp
  662.        C:\GUIDO>COPY *.ZIP A:                  $ cp *.zip /mnt/zip
  663.        C:\GUIDO>A:                             $ cd /mnt
  664.        A:>_                                    /mnt/$ _
  665.  
  666.   If you don't like this mounting/unmounting thing, use the mtools
  667.   suite: it's a set of commands that are perfectly equivalent to their
  668.   DOS counterpart, but start with an `m': i.e., mformat, mdir, mdel, and
  669.   so on. They can even preserve long file names, but not file
  670.   permissions. Use these commands as you'd use the DOS commands and rest
  671.   in peace.
  672.  
  673.   Needless to say, what holds for floppies also holds for other devices;
  674.   for instance, you may want to mount another hard disk or a CD-ROM
  675.   drive. Here's how to mount the CD-ROM:
  676.  
  677.        # mount -t iso9660 /dev/cdrom /mnt
  678.  
  679.   This was the ``official'' way to mount your disks, but there's a trick
  680.   in store. Since it's a bit of a nuisance having to be root to mount a
  681.   floppy or a CD-ROM, every user can be allowed to mount them this way:
  682.  
  683.   ╖  as root, do the following:
  684.  
  685.        ~# mkdir /mnt/a: ; mkdir /mnt/a ; mkdir /mnt/cdrom
  686.        ~# chmod 777 /mnt/a* /mnt/cd*
  687.        ~# # make sure that the CD-ROM device is right
  688.        ~# chmod 666 /dev/hdb ; chmod 666 /dev/fd*
  689.  
  690.   ╖  add in /etc/fstab the following lines:
  691.  
  692.        /dev/cdrom      /mnt/cdrom  iso9660 ro,user,noauto          0       0
  693.        /dev/fd0        /mnt/a:     msdos   user,noauto             0       0
  694.        /dev/fd0        /mnt/a      ext2    user,noauto             0       0
  695.  
  696.   Now, to mount a DOS floppy, an ext2 floppy, and a CD-ROM:
  697.  
  698.        $ mount /mnt/a:
  699.        $ mount /mnt/a
  700.        $ mount /mnt/cdrom
  701.  
  702.   /mnt/a, /mnt/a:, and /mnt/cdrom can now be accessed by every user.
  703.   Remember that allowing everyone to mount disks this way is a gaping
  704.   security hole, if you care.
  705.  
  706.   4.2.  Backing Up
  707.  
  708.   Now that you know how to handle floppies etc., a couple of lines to
  709.   see how to do your backup. There are several packages to help you, but
  710.   the very least you can do for a multi-volume backup is (as root):
  711.  
  712.        # tar -M -cvf /dev/fd0H1440 dir_to_backup/
  713.  
  714.   Make sure to have a formatted floppy in the drive, and several more
  715.   ready.  To restore your stuff, insert the first floppy in the drive
  716.   and do:
  717.  
  718.        # tar -M -xpvf /dev/fd0H1440
  719.  
  720.   5.  What About Windows?
  721.  
  722.   The ``equivalent'' of Windows is the graphic system X11. Unlike
  723.   Windows or the Mac, X11 wasn't designed for ease of use or to look
  724.   good, but just to provide graphic facilities to UNIX workstations.
  725.   These are the main differences:
  726.  
  727.   ╖  while Windows looks and feels the same all over the world, X11
  728.      doesn't: it's much more configurable. X11's overall look is given
  729.      by a key component called ``window manager''; there are many you
  730.      can choose from. The most common are fvwm, basic but nice and
  731.      memory efficient, fvwm2-95 and The Next Level that give X11 a
  732.      Windows 95--like taste, plus several others. Some look really
  733.      beautiful;
  734.  
  735.   ╖  your window manager can be configured so as a window acts as in,
  736.      er, Windows: you click on it and it comes to foreground. Another
  737.      possibility is that it comes to foreground when the mouse is
  738.      located on it. This feature (``focus'') and many others can be
  739.      altered by editing one or more configuration files. Read the docs
  740.      of your window manager;
  741.  
  742.   ╖  X applications are written using special libraries (``widget
  743.      sets''); as several are available, applications look different. The
  744.      most basic ones are those that use the Athena widgets (2--D look;
  745.      xdvi, xman, xcalc); others use Motif (netscape), others still use
  746.      Tcl/Tk, XForms, Qt and what have you. Some---not all---of these
  747.      libraries provide roughly the same look and feel as Windows;
  748.  
  749.   ╖  so much for the look of X11, but what about the feel?
  750.      Unfortunately, all applications behave differently. For instance,
  751.      if you select a line of text using the mouse and press BACKSPACE,
  752.      you'd expect the line to disappear, right? This doesn't work with
  753.      Athena--based apps, but it does with Motif, Qt, and Tcl/Tk ones;
  754.  
  755.   ╖  scrollbars, resizing, and iconisation: these, too, depend on the
  756.      window manager and the widget set. Too many different things to
  757.      mention here, just a couple of points. When using Athena--based
  758.      apps the scrollbars are better moved with the central button. If
  759.      you don't have a three--button mouse, try pressing the two buttons
  760.      together;
  761.  
  762.   ╖  applications don't have an icon by default, but they can have many.
  763.      It depends on the window manager. The desktop is called ``root
  764.      window'', and you can change its appearance with apps like xsetroot
  765.      or xloadimage;
  766.  
  767.   ╖  the clipboard can only contain text, and behaves strange. Once
  768.      you've selected text, it's already copied to the clipboard: move
  769.      elsewhere and press the central button. There's an application,
  770.      xclipboard, that provides for multiple clipboard buffers;
  771.  
  772.   ╖  drag and drop is an option, and is only available if you use X
  773.      applications that support it.
  774.  
  775.   To save memory, it's better to use applications that use the same
  776.   libraries, but this is difficult to do in practice. There's a project
  777.   called the K Desktop Environment that aims at making X11 look and
  778.   behave as coherently as Windows; it's currently in early beta stage
  779.   but, believe me, it's awesome.  It's going to put Windows' interface
  780.   to shame. Point your browser to http://www.kde.org.
  781.  
  782.   6.  Tailoring the System
  783.  
  784.   6.1.  System Initialisation Files
  785.  
  786.   Two important files under DOS are AUTOEXEC.BAT and CONFIG.SYS, which
  787.   are used at boot time to initialise the system, set some environment
  788.   variables like PATH and FILES, and possibly launch a program or batch
  789.   file.  Under Linux there are several initialisation files, some of
  790.   which you had better not tamper with until you know exactly what you
  791.   are doing. I'll tell you what the most important are, anyway:
  792.  
  793.        FILES                           NOTES
  794.  
  795.        /etc/inittab                    don't touch for now!
  796.        /etc/rc.d/*                     ditto
  797.  
  798.   If all you need is setting the $PATH and other environment variables,
  799.   or you want to change the login messages or automatically launch a
  800.   program after the login, have a look at the following files:
  801.  
  802.   FILES                                   NOTES
  803.  
  804.   /etc/issue                              sets pre-login message
  805.   /etc/motd                               sets post-login message
  806.   /etc/profile                            sets $PATH and other variables, etc.
  807.   /etc/bashrc                             sets aliases and functions, etc.
  808.   /home/your_home/.bashrc                 sets your aliases + functions
  809.   /home/your_home/.bash_profile   or
  810.   /home/your_home/.profile                sets environment + starts your progs
  811.  
  812.   If the latter file exists (note that it is a hidden file), it will be
  813.   read after the login and the commands in it will be executed.
  814.  
  815.   Example---look at this .bash_profile:
  816.  
  817.   ______________________________________________________________________
  818.   # I am a comment
  819.   echo Environment:
  820.   printenv | less   # equivalent of command SET under DOS
  821.   alias d='ls -l'   # easy to understand what an alias is
  822.   alias up='cd ..'
  823.   echo "I remind you that the path is "$PATH
  824.   echo "Today is `date`"  # use the output of command 'date'
  825.   echo "Have a good day, "$LOGNAME
  826.   # The following is a "shell function"
  827.   ctgz() # List the contents of a .tar.gz archive.
  828.   {
  829.     for file in $*
  830.     do
  831.       gzip -dc ${file} | tar tf -
  832.     done
  833.   }
  834.   # end of .profile
  835.   ______________________________________________________________________
  836.  
  837.   $PATH and $LOGNAME, you guessed right, are environment variables.
  838.   There are many others to play with; for instance, RMP for apps like
  839.   less or bash.
  840.  
  841.   6.2.  Program Initialisation Files
  842.  
  843.   Under Linux, virtually everything can be tailored to your needs. Most
  844.   programs have one or more initialisation files you can fiddle with,
  845.   often as a .prognamerc in your home dir. The first ones you'll want to
  846.   modify are:
  847.  
  848.   ╖   .inputrc: used by bash to define keybindings;
  849.  
  850.   ╖   .xinitrc: used by startx to initialise X Window System;
  851.  
  852.   ╖   .fvwmrc: used by the window manager fvwm. A sample is in:
  853.      /usr/lib/X11/fvwm/system.fvwmrc;
  854.  
  855.   ╖   .Xdefault: used by rxvt, a terminal emulator for X, and other
  856.      programs.
  857.  
  858.   For all of these and the others you'll come across sooner or later,
  859.   RMP.
  860.  
  861.   7.  A Bit of Programming
  862.  
  863.   7.1.  Shell Scripts: .BAT Files on Steroids
  864.  
  865.   If you used .BAT files to create shortcuts of long command lines (I
  866.   did a lot), this goal can be attained by inserting appropriate alias
  867.   lines (see example above) in profile or .profile. But if your .BATs
  868.   were more complicated, then you'll love the scripting language made
  869.   available by the shell: it's as powerful as QBasic, if not more. It
  870.   has variables, structures like while, for, case, if... then... else,
  871.   and lots of other features: it can be a good alternative to a ``real''
  872.   programming language.
  873.  
  874.   To write a script---the equivalent of a .BAT file under DOS---all you
  875.   have to do is write a standard ASCII file containing the instructions,
  876.   save it, then make it executable with the command chmod +x
  877.   <scriptfile>. To execute it, type its name.
  878.  
  879.   A word of warning. The system editor is called vi, and in my
  880.   experience most new users find it very difficult to use. I'm not going
  881.   to explain how to use it, because I don't like it and don't use it, so
  882.   there. See Matt Welsh's ``Linux installation...'', pag. 109. (You had
  883.   better get hold of another editor like joe, jed or emacs for X.)
  884.   Suffice it here to say that:
  885.  
  886.   ╖  to insert some text, type 'i' then your text;
  887.  
  888.   ╖  to quit vi whithout saving, type ESC then :q!
  889.  
  890.   ╖  to save and quit, type ESC then :wq
  891.  
  892.   Writing scripts under bash is such a vast subject it would require a
  893.   book by itself, and I will not delve into the topic any further. I'll
  894.   just give you an example of shell script, from which you can extract
  895.   some basic rules:
  896.  
  897.   ______________________________________________________________________
  898.   #!/bin/sh
  899.   # sample.sh
  900.   # I am a comment
  901.   # don't change the first line, it must be there
  902.   echo "This system is: `uname -a`" # use the output of the command
  903.   echo "My name is $0" # built-in variables
  904.   echo "You gave me the following $# parameters: "$*
  905.   echo "The first parameter is: "$1
  906.   echo -n "What's your name? " ; read your_name
  907.   echo notice the difference: "hi $your_name" # quoting with "
  908.   echo notice the difference: 'hi $your_name' # quoting with '
  909.   DIRS=0 ; FILES=0
  910.   for file in `ls .` ; do
  911.     if [ -d ${file} ] ; then # if file is a directory
  912.       DIRS=`expr $DIRS + 1`  # DIRS = DIRS + 1
  913.     elif [ -f ${file} ] ; then
  914.       FILES=`expr $FILES + 1`
  915.     fi
  916.     case ${file} in
  917.       *.gif|*jpg) echo "${file}: graphic file" ;;
  918.       *.txt|*.tex) echo "${file}: text file" ;;
  919.       *.c|*.f|*.for) echo "${file}: source file" ;;
  920.       *) echo "${file}: generic file" ;;
  921.     esac
  922.   done
  923.   echo "there are ${DIRS} directories and ${FILES} files"
  924.   ls | grep "ZxY--!!!WKW"
  925.   if [ $? != 0 ] ; then # exit code of last command
  926.     echo "ZxY--!!!WKW not found"
  927.   fi
  928.   echo "enough... type 'man bash' if you want more info."
  929.   ______________________________________________________________________
  930.  
  931.   7.2.  C for Yourself
  932.  
  933.   Under UNIX, the system language is C, love it or hate it. Scores of
  934.   other languages (FORTRAN, Pascal, Lisp, Basic, Perl, awk...) are also
  935.   available.
  936.  
  937.   Taken for granted that you know C, here are a couple of guidelines for
  938.   those of you who have been spoilt by Turbo C++ or one of its DOS kin.
  939.   Linux's C compiler is called gcc and lacks all the bells and whistles
  940.   that usually accompany its DOS counterparts: no IDE, on-line help,
  941.   integrated debugger, etc. It's just a rough command-line compiler,
  942.   very powerful and efficient. To compile your standard hello.c you'll
  943.   do:
  944.  
  945.        $ gcc hello.c
  946.  
  947.   which will create an executable file called a.out. To give the
  948.   executable a different name, do
  949.  
  950.   $ gcc -o hola hello.c
  951.  
  952.   To link a library against a program, add the switch -l<libname>. For
  953.   example, to link in the math library:
  954.  
  955.        $ gcc -o mathprog mathprog.c -lm
  956.  
  957.   (The -l<libname> switch forces gcc to link the library
  958.   /usr/lib/lib<libname>.a; so -lm links /usr/lib/libm.a).
  959.  
  960.   So far, so good. But when your prog is made of several source files,
  961.   you'll need to use the utility make. Let's suppose you have written an
  962.   expression parser: its source file is called parser.c and #includes
  963.   two header files, parser.h and xy.h. Then you want to use the routines
  964.   in parser.c in a program, say, calc.c, which in turn #includes
  965.   parser.h. What a mess! What do you have to do to compile calc.c?
  966.  
  967.   You'll have to write a so-called makefile, which teaches the compiler
  968.   the dependencies between sources and objects files. In our example:
  969.  
  970.   ______________________________________________________________________
  971.   # This is makefile, used to compile calc.c
  972.   # Press the <TAB> key at appropriate positions!
  973.  
  974.   calc: calc.o parser.o
  975.   <TAB>gcc -o calc calc.o parser.o -lm
  976.   # calc depends on two object files: calc.o and parser.o
  977.  
  978.   calc.o: calc.c parser.h
  979.   <TAB>gcc -c calc.c
  980.   # calc.o depends on two source files
  981.  
  982.   parser.o:  parser.c parser.h xy.h
  983.   <TAB>gcc -c parser.c
  984.   # parser.o depends on three source files
  985.  
  986.   # end of makefile.
  987.   ______________________________________________________________________
  988.  
  989.   Save this file as makefile and type make to compile your program;
  990.   alternatively, save it as calc.mak and type make -f calc.mak, and of
  991.   course RMP. You can invoke some help about the C functions, that are
  992.   covered by man pages, section 3; for example,
  993.  
  994.        $ man 3 printf
  995.  
  996.   There are lots of libraries available out there; among the first
  997.   you'll want to use are ncurses, to handle textmode effects, and
  998.   svgalib, to do graphics. If you feel brave enough to tackle X
  999.   programming, get XForms ( ftp://bloch.phys.uwm.edu/pub/xforms) and/or
  1000.   one of the many libraries that make writing X programs a breeze. Have
  1001.   a look at http://www.xnet.com/~blatura/linapp6.html .
  1002.  
  1003.   Many editors can act as an IDE; emacs and jed, for instance, also
  1004.   feature syntax highlighting, automatic indent and so on.
  1005.   Alternatively, get the package rhide from
  1006.   sunsite.unc.edu:/pub/Linux/devel/debuggers/. It's a Borland IDE clone,
  1007.   and chances are that you'll like it.
  1008.  
  1009.   8.  The Remaining 1%
  1010.  
  1011.   8.1.  Using tar & gzip
  1012.  
  1013.   Under UNIX there are some widely used applications to archive and
  1014.   compress files. tar is used to make archives---it's like PKZIP but it
  1015.   doesn't compress, it only archives. To make a new archive:
  1016.  
  1017.        $ tar -cvf <archive_name.tar> <file> [file...]
  1018.  
  1019.   To extract files from an archive:
  1020.  
  1021.        $ tar -xpvf <archive_name.tar> [file...]
  1022.  
  1023.   To list the contents of an archive:
  1024.  
  1025.        $ tar -tf <archive_name.tar> | less
  1026.  
  1027.   You can compress files using compress, which is obsolete and shouldn't
  1028.   be used any more, or gzip:
  1029.  
  1030.        $ compress <file>
  1031.        $ gzip <file>
  1032.  
  1033.   that creates a compressed file with extension .Z (compress) or .gz
  1034.   (gzip). These programs can compress only one file at a time. To
  1035.   decompress, use:
  1036.  
  1037.   $ compress -d <file.Z>
  1038.   $ gzip -d <file.gz>
  1039.  
  1040.   RMP.
  1041.  
  1042.   The unarj, zip and unzip (PK??ZIP compatible) utilities are also
  1043.   available. Files with extension .tar.gz or .tgz (archived with tar,
  1044.   then compressed with gzip) are as common in the UNIX world as .ZIP
  1045.   files are under DOS. Here's how to list the contents of a
  1046.    .tar.gz archive:
  1047.  
  1048.        $ gzip -dc <file.tar.gz> | tar tf - | less
  1049.  
  1050.   or, equivalently,
  1051.  
  1052.        $ tar -ztf <file.tar.gz> | less
  1053.  
  1054.   8.2.  Installing Applications
  1055.  
  1056.   First of all: installing packages is root's work. Some Linux
  1057.   applications are distributed as .tar.gz or .tgz archives, specifically
  1058.   prepared so that they can be decompressed from / typing the following
  1059.   command:
  1060.  
  1061.        # gzip -dc <file.tar.gz> | tar xvf -
  1062.  
  1063.   or, equivalently,
  1064.  
  1065.        $ tar -zxf <file.tar.gz>
  1066.  
  1067.   The files will be decompressed in the right directory, which will be
  1068.   created on the fly. Users of the Slackware distribution have a user-
  1069.   friendly pkgtool program; another is rpm, which is available on all
  1070.   distributions thanks to Red Hat.
  1071.  
  1072.   Most programs shouldn't be installed from /; typically, the archive
  1073.   will contain a directory called pkgname/ and a lot of files and/or
  1074.   subdirectories under pkgname/. A good rule is to install those
  1075.   packages from /usr/local. Besides, some programs are distributed as C
  1076.   or C++ source files, which you'll have to compile to create the
  1077.   binaries.  In most cases, all you have to do is issue make. Obviously,
  1078.   you'll need the gcc or g++ compiler.
  1079.  
  1080.   8.3.  Tips You Can't Do Without
  1081.  
  1082.   Command completion: pressing <TAB> when issuing a command will
  1083.   complete the command line for you. Example: you have to type gcc
  1084.   this_is_a_long_name.c; typing gcc thi<TAB> will suffice. (If you have
  1085.   other files that start with the same characters, supply enough
  1086.   characters to resolve any ambiguity.)
  1087.  
  1088.   Backscrolling: pressing SHIFT + PAG UP (the grey key) allows you to
  1089.   backscroll a few pages, depending on how much video memory you have.
  1090.  
  1091.   Resetting the screen: if you happen to more or cat a binary file, your
  1092.   screen may end up full of garbage. To fix things, blind type reset or
  1093.   this sequence of characters: echo CTRL-V ESC c RETURN.
  1094.  
  1095.   Pasting text: in console, see below; in X, click and drag to select
  1096.   the text in an xterm window, then click the middle button (or the two
  1097.   buttons together if you have a two-button mouse) to paste. There is
  1098.   also xclipboard (alas, only for text); don't get confused by its very
  1099.   slow response.
  1100.  
  1101.   Using the mouse: install gpm, a mouse driver for the console.  Click
  1102.   and drag to select text, then right click to paste the selected text.
  1103.   It works across different VCs.
  1104.  
  1105.   Messages from the kernel: have a look at /var/adm/messages or
  1106.   /var/log/messages as root to see what the kernel has to tell you,
  1107.   including bootup messages. The command dmesg is also handy.
  1108.  
  1109.   8.4.  Useful Programs and Commands
  1110.  
  1111.   This list reflects my personal preferences and needs, of course. First
  1112.   of all, where to find them. Since you all know how to surf the Net and
  1113.   how to use archie and ftp, I'll just give you three of the most
  1114.   important addresses for Linux:  ftp://sunsite.unc.edu,
  1115.   ftp://tsx-11.mit.edu, and ftp://nic.funet.fi. Please use your nearest
  1116.   mirror.
  1117.  
  1118.   ╖  at allows you to run programs at a specified time;
  1119.  
  1120.   ╖  awk is a simple yet powerful language to manipulate data files (and
  1121.      not only). For example, being data.dat your multi field data file,
  1122.  
  1123.        $ awk '$2 ~ "abc" {print $1, "\t", $4}' data.dat
  1124.  
  1125.   prints out fields 1 and 4 of every line in data.dat whose second field
  1126.   contains ``abc''.
  1127.  
  1128.   ╖  cron is useful to perform tasks periodically, at specified date and
  1129.      time;
  1130.   ╖  delete-undelete do what their name means;
  1131.  
  1132.   ╖  df gives you info about all mounted disk(s);
  1133.  
  1134.   ╖  dosemu allows you to run several (not all) DOS programs---including
  1135.      Windows 3.x, with a bit of hacking;
  1136.  
  1137.   ╖  file <filename> tells you what filename is (ASCII text, executable,
  1138.      archive, etc.);
  1139.  
  1140.   ╖  find (see also Section ``dir'') is one of the most powerful and
  1141.      useful commands. It's used to find files that match several
  1142.      characteristics and perform actions on them. General use of find
  1143.      is:
  1144.  
  1145.        $ find <directory> <expression>
  1146.  
  1147.   where <expression> includes search criteria and actions. Examples:
  1148.  
  1149.        $ find . -type l -exec ls -l {} \;
  1150.  
  1151.   finds all the files that are symbolic links and shows what they point
  1152.   to.
  1153.  
  1154.        $ find / -name "*.old" -ok rm {} \;
  1155.  
  1156.   finds all the files matching the pattern and deletes them, asking for
  1157.   your permission first.
  1158.  
  1159.        $ find . -perm +111
  1160.  
  1161.   finds all the files whose permissions match 111 (executable).
  1162.  
  1163.        $ find . -user root
  1164.  
  1165.   finds all the files that belong to root. Lots of possibilities
  1166.   here---RMP.
  1167.  
  1168.   ╖  gnuplot is a brilliant program for scientific plotting;
  1169.  
  1170.   ╖  grep finds text patterns in files. For example,
  1171.  
  1172.        $ grep -l "geology" *.tex
  1173.  
  1174.   lists the files *.tex that contain the word ``geology''. The variant
  1175.   zgrep works on gzipped files. RMP;
  1176.  
  1177.   ╖  tcx compresses executable binaries keeping them executable;
  1178.  
  1179.   ╖  joe is an excellent editor. Invoking it by typing jstar you'll get
  1180.      the same key bindings as WordStar and its offspring, including DOS
  1181.      and Borland's Turbo languages editors;
  1182.  
  1183.   ╖  less is probably the best text browser, and if properly configured
  1184.      lets you browse gzipped, tarred, and zipped files as well;
  1185.  
  1186.   ╖  lpr <file> prints a file in background. To check the status of the
  1187.      printing queue, use lpq; to remove a file from the printing queue,
  1188.      use lprm;
  1189.  
  1190.   ╖  mc is a great file manager;
  1191.  
  1192.   ╖  pine is a nice e-mailing program;
  1193.  
  1194.   ╖  script <script_file> copies to script_file what appears on screen
  1195.      until you issue the command exit. Useful for debugging;
  1196.  
  1197.   ╖  sudo allows users to perform some of root's tasks (e.g.  formatting
  1198.      and mounting disks; RMP);
  1199.  
  1200.   ╖  uname -a gives you info about your system;
  1201.  
  1202.   ╖  zcat and zless are useful for viewing gzipped text files without
  1203.      ungzipping them. Possible use:
  1204.  
  1205.        $ zless textfile.gz
  1206.        $ zcat textfile.gz | lpr
  1207.  
  1208.   ╖  The following commands often come in handy: bc, cal, chsh, cmp,
  1209.      cut, fmt, head, hexdump, nl, passwd, printf, sort, split, strings,
  1210.      tac, tail, tee, touch, uniq, w, wall, wc, whereis, write, xargs,
  1211.      znew. RMP.
  1212.  
  1213.   8.5.  Common Extensions and Related Programs
  1214.  
  1215.   You may come across scores of file extensions. Excluding the more
  1216.   exotic ones (i.e. fonts, etc.), here's a list of who's what:
  1217.   ╖  1 ... 8: man pages. Get man.
  1218.  
  1219.   ╖  arj: archive made with arj. unarj to unpack.
  1220.  
  1221.   ╖  dvi: output file produced by TeX (see below). xdvi to visualise it;
  1222.      dvips to turn it into a PostScript .ps file.
  1223.  
  1224.   ╖  gif: graphic file. Get seejpeg or xpaint.
  1225.  
  1226.   ╖  gz: archive made with gzip.
  1227.  
  1228.   ╖  info: info file (sort of alternative to man pages). Get info.
  1229.  
  1230.   ╖  jpg, jpeg: graphic file. Get seejpeg.
  1231.  
  1232.   ╖  lsm: Linux Software Map file. It's a plain ASCII file containing
  1233.      the description of a package.
  1234.  
  1235.   ╖  ps: PostScript file. To visualise or print it get gs and,
  1236.      optionally, ghostview.
  1237.  
  1238.   ╖  rpm: Red Hat package. You can install it on any system using the
  1239.      package manager rpm.
  1240.  
  1241.   ╖  tgz, tar.gz: archive made with tar and compressed with gzip.
  1242.  
  1243.   ╖  tex: text file to submit to TeX, a powerful typesetting program.
  1244.      Get the package tex, available in many distributions; but beware of
  1245.      NTeX, which has corrupted fonts and is included in some Slackware
  1246.      versions.
  1247.  
  1248.   ╖  texi: texinfo file, can produce both TeX and info files (cp.
  1249.      info). Get texinfo.
  1250.  
  1251.   ╖  xbm, xpm, xwd: graphic file. Get xpaint.
  1252.  
  1253.   ╖  Z: archive made with compress.
  1254.  
  1255.   ╖  zip: archive made with zip. Get zip and unzip.
  1256.  
  1257.   9.  The End, for Now
  1258.  
  1259.   Congratulations! You have now grasped a little bit of UNIX and are
  1260.   ready to start working. Remember that your knowledge of the system is
  1261.   still limited, and that you are expected to do more practice with
  1262.   Linux to use it comfortably. But if all you had to do was get a bunch
  1263.   of applications and start working with them, I bet that what I
  1264.   included here is enough.
  1265.  
  1266.   I'm sure you'll enjoy using Linux and will keep learning more about
  1267.   it---everybody does. I bet, too, that you'll never go back to DOS! I
  1268.   hope I made myself understood and did a good service to my 3 or 4
  1269.   readers.
  1270.  
  1271.   9.1.  Copyright
  1272.  
  1273.   Unless otherwise stated, Linux HOWTO documents are copyrighted by
  1274.   their respective authors. Linux HOWTO documents may be reproduced and
  1275.   distributed in whole or in part, in any medium physical or electronic,
  1276.   as long as this copyright notice is retained on all copies. Commercial
  1277.   redistribution is allowed and encouraged; however, the author would
  1278.   like to be notified of any such distributions.
  1279.  
  1280.   All translations, derivative works, or aggregate works incorporating
  1281.   any Linux HOWTO documents must be covered under this copyright notice.
  1282.   That is, you may not produce a derivative work from a HOWTO and impose
  1283.   additional restrictions on its distribution. Exceptions to these rules
  1284.   may be granted under certain conditions; please contact the Linux
  1285.   HOWTO coordinator at the address given below.
  1286.  
  1287.   In short, we wish to promote dissemination of this information through
  1288.   as many channels as possible. However, we do wish to retain copyright
  1289.   on the HOWTO documents, and would like to be notified of any plans to
  1290.   redistribute the HOWTOs.
  1291.  
  1292.   If you have questions, please contact Greg Hankins, the Linux HOWTO
  1293.   coordinator, at gregh@sunsite.unc.edu via email.
  1294.  
  1295.   9.2.  Disclaimer
  1296.  
  1297.   ``From DOS to Linux HOWTO'' was written by Guido Gonzato,
  1298.   guido@ibogfs.cineca.it.  Many thanks to Matt Welsh, the author of
  1299.   ``Linux Installation and Getting Started'', to Ian Jackson, the author
  1300.   of ``Linux frequently asked questions with answers'', to Giuseppe
  1301.   Zanetti, the author of ``Linux'', to all the folks who emailed me
  1302.   suggestions, and especially to Linus Torvalds and GNU who gave us
  1303.   Linux.
  1304.  
  1305.   This document is provided ``as is''. I put great effort into writing
  1306.   it as accurately as I could, but you use the information contained in
  1307.   it at your own risk. In no event shall I be liable for any damages
  1308.   resulting from the use of this work.
  1309.  
  1310.   Feedback is welcome. For any requests, suggestions, flames, etc., feel
  1311.   free to contact me.
  1312.  
  1313.   Enjoy Linux and life,
  1314.  
  1315.   Guido   =8-)
  1316.  
  1317.